Description

This Rmd file investigates residence time of individual fish in different reaches. This will help us determine in what time window covariates are most influential to fish movement decisions.

Covariate inclusion in Siegel et al. 2021: “Environmentally triggered shifts in steelhead migration behavior and consequences for survival in the mid-Columbia River”

“For each population group, we fit a 3-component mixture model [32] to log-transformed travel times using the package mixtools [33] to assign a probability of migration behavior to each fish that was detected at both dams (n = 32,740).”

“We considered the following environmental variables in models for the probability of delay: river temperature (T), river flow (F), dam spill volume (S), and the date of first detection at Bonneville Dam (D). The environmental variables (T, F, and S), which were accessed from the Columbia River Data Access in Real Time database [36], were averaged over the median fast fish travel time period (8 days) starting on the day of first detection at Bonneville Dam. These 8 days represent the period of exposure during which a fish makes the “decision” to delay or to continue upstream.”

Proposed covariate structure

Continuous
  1. Temperature
  • In mainstem sites, use the temperature value at the median residence time of “fast” fish - the fish that move straight through. Or pick a window of time based on residence time, and add that many days to the day that we see them enter the state and then average across those days.
  • Taking values right after fish enter a state would ensure that we are measuring conditions that we know they had to have experienced
  • Use temperature as a covariate for movements upstream and into tributaries, but not downstream.
  1. Spill
  • March days of spill; this would be both “useful to fish” and “useful to BPA”
  • Richins and Skalski (2018): no relationship was found between fallback rates to natal tributaries and spill during January or February.
  • One option is to use this as a covariate for overshoot fallback only; might need to do some indexing with origins to make this happen
  • Does this get at the “useful to BPA” level of spill? If we want to do a deep dive on spill, we can slice spill different ways (perhaps at a level finer than by month) and try inclduing it in different forms
  1. Flow - DROP. Flow is highly correlated with spill, and spill has been found to be more informative than flow for downstream movements (fallback) and not a good predictor of upstream movements
  • Richins and Skalski (2018) investigated how fallback rates were related to flow, and found no relationship between fallback rates to natal tributaries and late-winter flow
  • Siegel et al. (2021) looked at upstream migration of Steelhead (between Bonneville and McNary) and found that flow was not a good predictor for upstream migratory delays

Inevitably we are going to have fish where we are using covariates where we know they didn’t experience those conditions, especially in the case of spill. Temperature shouldn’t be as big of a deal, since the window that we average over will probably be quite small and temperature is generally very autocorrelated.

Categorical
  1. Natal origin - all movements within ESU boundaries
  2. Hatchery vs. wild - all movements
  3. Barged vs. not barged - all movements, but would not affect most individuals
  • Richins and Skalski (2018) found that barging led to lower migration success (but also lower overshooting)
  • Only had enough data for Tucannon River Hatchery Steelhead
  1. Acclimated vs. not acclimated - all movements
  • Strong effect, but again limited to one population (Wenatchee River Hatchery Steelhead)
  1. Ocean age - all movements
  • Richins and Skalski (2018): “Compared to barging and rearing practices, ocean residence time was associated with smaller effects on migration success. Using meta-analysis, we found that increased ocean residence time was associated with reduced homing success during early migration, decreased movement directly to the natal tributary, increased overshooting, and decreased over-all success. Spending 2 years rather than 1 year in the ocean had estimated effects on overshooting ranging from a 4-percentage-point decrease (SE = 0.5 percentage point) for Wenatchee River steel- head to a 12-percentage-point increase (SE = 1 percentage point) for Entiat River steelhead.”

Residence time by mainstem reach

Lower/Middle Columbia

Upper Columbia

Snake

Covariate data exploratory analysis

What is the relationship between water temperature at Ice Harbor and the probability of overshooting (and other movements) for Walla Walla River Steelhead?

From Richins and Skalski (2018): for natural-origin Walla Walla River steelhead, the probability of moving directly to home decreased from over 90% to less than 25% as water temperatures increased from 10°C to 20°C.

Okay, but how is temperature correlated with direction of movement?

The temperatures for fish going upstream are as follows:

##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##   2.917  16.896  19.256  18.173  20.763  22.473

The temperatures for fish going downstream are as follows:

##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##   2.367   6.674  11.653  12.841  19.685  22.386

run the multinomial logit again with fish, but now only those going upstream

run the multinomial logit again with fish, but now only those going downstream